home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / game / patch / pxhd.lha / ProjectX / Install-ProjectX < prev    next >
Text File  |  1997-08-13  |  2KB  |  101 lines

  1.  
  2. ;----------------------------
  3.  
  4.  
  5. ;try to figure out a place where the user usually installs his games
  6. (if (exists "Games:" (noreq) )
  7.     (set @default-dest "Games:")
  8.     (if (exists "SYS:Games" (noreq) )
  9.         (set @default-dest "SYS:Games")
  10.         (if (exists "Work:Games" (noreq) )
  11.             (set @default-dest "Work:Games")
  12.             (if (exists "JEUX:" (noreq) )
  13.                (set @default-dest "JEUX:")
  14.                (set @default-dest "SYS:")
  15.             )
  16.         )
  17.     )
  18. )
  19.  
  20.  
  21.  
  22. (set @default-dest
  23. (askdir
  24.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  25.     (help @askdir-help)
  26.     (default @default-dest)
  27.     (disk)
  28. )
  29. )
  30.  
  31. (set #dest (tackon @default-dest @app-name))
  32.  
  33. (set #CI_unit
  34.     (askchoice
  35.         (prompt "From which disk unit do you want\nto install the game")
  36.         (help    @askoptions-help)
  37.         (choices
  38.            "DF0:"
  39.            "DF1:"
  40.            "DF2:"
  41.            "DF3:"
  42.         )
  43.     )
  44. )
  45.  
  46. (set #CI_drive ("DF%ld:" #CI_unit))
  47.  
  48.  
  49. (makedir #dest
  50.     (help @makedir-help)
  51.     (infos)
  52. )
  53.  
  54. ;----------------------------
  55.  
  56. (copyfiles
  57.     (help @copyfiles-help)
  58.     (source "ProjectXHD")
  59.     (dest #dest)
  60.     (infos)
  61. )
  62.  
  63. (copyfiles
  64.     (help @copyfiles-help)
  65.     (source "pxhd.readme")
  66.     (dest #dest)
  67.     (infos)
  68. )
  69.  
  70. (message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))
  71.     (if
  72.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d1\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  73.         ("")
  74.         (abort "\"disk2file\" must be in your PATH !")
  75.     )
  76.  
  77. (message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))
  78.     (if
  79.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d2\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  80.         ("")
  81.         (abort "\"disk2file\" must be in your PATH !")
  82.     )
  83.  
  84. (message ("\nInsert %s disk 3 into drive %s !" @app-name #CI_drive))
  85.     (if
  86.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d3\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  87.         ("")
  88.         (abort "\"disk2file\" must be in your PATH !")
  89.     )
  90.  
  91. (message ("\nInsert %s disk 4 into drive %s !" @app-name #CI_drive))
  92.     (if
  93.         (= 0 (run ("disk2file %ld \"%s/ProjectX.d4\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  94.         ("")
  95.         (abort "\"disk2file\" must be in your PATH !")
  96.     )
  97.  
  98.  
  99. (exit)
  100.  
  101.